home *** CD-ROM | disk | FTP | other *** search
/ Light ROM 1 / LIGHT-ROM 1 (Amiga Library Services)(1994).iso / ffdisks / d894.lha / Resize / Makefile next >
Makefile  |  1993-06-09  |  623b  |  25 lines

  1. #   This is a rather simple Makefile. You must change the CC, LIBS and FLAGS
  2. #   definitions to use your prefered C-Compiler. For example you must tell
  3. #   gcc where to find the os-includes. Change the inc: after -I to the place
  4. #   where your Amiga includes reside.
  5.  
  6. SC        =        sc
  7. DCC        =        dcc
  8. GCC        =        gcc
  9.  
  10. SCLIBS        =        link
  11. DCCLIBS     =        -lc
  12. GCCLIBS     =        -lamy
  13.  
  14. SCFLAGS     =        opt optglo optsize
  15. DCCFLAGS    =        -O2 -o resize
  16. GCCFLAGS    =        -O2 -o resize -Iinc:
  17.  
  18. CC        =        $(SC)
  19. LIBS        =        $(SCLIBS)
  20. FLAGS        =        $(SCFLAGS)
  21.  
  22. resize: resize.c
  23.      $(CC) $(FLAGS) resize.c $(LIBS)
  24.  
  25.